home *** CD-ROM | disk | FTP | other *** search
/ The Hacker Chronicles - A…the Computer Underground / The Hacker Chronicles - A Tour of the Computer Underground (P-80 Systems).iso / radio1 / ham02.txt < prev    next >
Text File  |  1992-10-03  |  9KB  |  228 lines

  1. Originally Displayed By P-80 Systems
  2.  
  3.  
  4. Teletype and the Baudot Code
  5. by THE RESEARCHER
  6.  
  7.      TTY and TDD sent over phone lines uses 1800 Hz for space and 1400 Hz for mark. By comparison, your 300 baud modem uses these frequencies: Originate (space-1070 mark-1270), Answer (space-2025 mark-2225). TTY/TDD is sent at 60 words per minute (45.5 baud). Like RTTY, it uses a five element Baudot code which bears no resemblance to ASCII. I had to build my own demodulator and keyer to check out this information.
  8.      If you want to check out RTTY, you will need a communications quality short wave receiver and a demodulator. There is some good information on RTTY in chapter 5 of "Specialized Communications Techniques for the Radio Amateur".
  9.      If you want to explore these areas of telecommunications, you will need more information than I can give you in a short article. The book I mentioned is a good starting point.
  10.      The following table is a listing of the Baudot code:
  11.  
  12. .      TELETYPEWRITER CODE
  13. .   "*" = MARK    "-" = SPACE
  14. ---------------------------------
  15. .                        AMERICAN
  16. NUMBER                   TELETYPE
  17. . OF    CODE ELEMENTS   COMMERCIAL
  18. SIGNAL   !1!2!3!4!5!     KEYBOARD
  19. ! 1  !   !*!*!-!-!-!    ! A ! - !
  20. ! 2  !   !*!-!-!*!*!    ! B ! ? !
  21. ! 3  !   !-!*!*!*!-!    ! C ! : !
  22. ! 4  !   !*!-!-!*!-!    ! D ! $ !
  23. ! 5  !   !*!-!-!-!-!    ! E ! 3 !
  24. ! 6  !   !*!-!*!*!-!    ! F ! ! !
  25. ! 7  !   !-!*!-!*!*!    ! G ! & !
  26. ! 8  !   !-!-!*!-!*!    ! H ! # !
  27. ! 9  !   !-!*!*!-!-!    ! I ! 8 !
  28. ! 10 !   !*!*!-!*!-!    ! J ! ' !
  29. ! 11 !   !*!*!*!*!-!    ! K ! ( !
  30. ! 12 !   !-!*!-!-!*!    ! L ! ) !
  31. ! 13 !   !-!-!*!*!*!    ! M ! . !
  32. ! 14 !   !-!-!*!*!-!    ! N ! , !
  33. ! 15 !   !-!-!-!*!*!    ! O ! 9 !
  34. ! 16 !   !-!*!*!-!*!    ! P ! 0 !
  35. ! 17 !   !*!*!*!-!*!    ! Q ! 1 !
  36. ! 18 !   !-!*!-!*!-!    ! R ! 4 !
  37. ! 19 !   !*!-!*!-!-!    ! S !BELL
  38. ! 20 !   !-!-!-!-!*!    ! T ! 5 !
  39. ! 21 !   !*!*!*!-!-!    ! U ! 7 !
  40. ! 22 !   !-!*!*!*!*!    ! V ! ; !
  41. ! 23 !   !*!*!-!-!*!    ! W ! 2 !
  42. ! 24 !   !*!-!*!*!*!    ! X ! / !
  43. ! 25 !   !*!-!*!-!*!    ! Y ! 6 !
  44. ! 26 !   !*!-!-!-!*!    ! Z ! " !
  45. ! 27 !   !-!-!-!*!-!    !CAR/RET!
  46. ! 28 !   !-!*!-!-!-!    LINE FEED
  47. ! 29 !   !*!*!*!*!*!    !LETTERS!
  48. ! 30 !   !*!*!-!*!*!    !FIGURES!
  49. ! 31 !   !-!-!*!-!-!    ! SPACE !
  50. ! 32 !   !-!-!-!-!-!    ! BLANK !
  51.  
  52.      With only five elements to work with, the maximum number of combinations is 32. To expand the number of characters which can be sent, two of the combinations are devoted to special signals called "letters" and "figures". When a "letters" signal is sent, the receiving equipment knows that the characters which follow are to be interpreted as letters. If a "figures" signal is sent, it means the characters which follow are figures (numbers and puntuation marks). For example, the code for "H" and "#" are the same. Which character is printed is determined by wether it was preceded by a "letters" or "figures" code.
  53.  
  54.      I was recently asked by a young hacker to post the EBCDIC character code. Since I am posting telecommunications codes this seems like a good place to include it. If your terminal program includes translation tables, you can use these codes to communicate with computers that use this system.
  55.      To give credit where credit is due, I want to point out that this bit of nonsequiter confusion was created by IBM.
  56.  
  57.  ---------------------------
  58. ! The EBCDIC Character Code !
  59. ! ------------------------- !
  60. !       Control Codes       !
  61. !       ------- -----       !
  62. !     Dec  Hex  EBCDEC      !
  63. !     ---  ---  -----       !
  64. !       0   00    NUL       !
  65. !       1   01    SOH       !
  66. !       2   02    STX       !
  67. !       3   03    ETX       !
  68. !       4   04    PF        !
  69. !       5   05    HT        !
  70. !       6   06    LC        !
  71. !       7   07    DEL       !
  72. !      10   0A    SMM       !
  73. !      11   0B    VT        !
  74. !      12   0C    FF        !
  75. !      13   0D    CR        !
  76. !      14   0E    SO        !
  77. !      15   0F    SI        !
  78. !      16   10    DLE       !
  79. !      17   11    DC1       !
  80. !      18   12    DC2       !
  81. !      19   13    TM        !
  82. !      20   14    RES       !
  83. !      21   15    NL        !
  84. !      22   16    BS        !
  85. !      23   17    IL        !
  86. !      24   18    CAN       !
  87. !      25   19    EM        !
  88. !      26   1A    CC        !
  89. !      27   1B    CU1       !
  90. !      28   1C    IFS       !
  91. !      29   1D    IGS       !
  92. !      30   1E    IRS       !
  93. !      31   1F    IUS       !
  94. !      32   20    DS        !
  95. !      33   21    SOS       !
  96. !      34   22    FS        !
  97. !      36   24    BYP       !
  98. !      37   25    LF        !
  99. !      38   26    ETB       !
  100. !      39   27    ESC       !
  101. !      42   2A    SM        !
  102. !      43   2B    CU2       !
  103. !      45   2D    ENQ       !
  104. !      46   2E    ACK       !
  105. !      47   2F    BEL       !
  106. !      50   32    SYN       !
  107. !      52   34    PN        !
  108. !      53   35    RS        !
  109. !      54   36    UC        !
  110. !      55   37    EOT       !
  111. !      59   3B    CU3       !
  112. !      60   3C    DC4       !
  113. !      61   3D    NAK       !
  114. !      63   3F    SUB       !
  115. !                           !
  116. !      --------------       !
  117. !      64   40   SPACE      !
  118. !      ---------------      !
  119. !                           !
  120. !    PUNCUATION & SYMBOLS   !
  121. !    --------------------   !
  122. !     Dec  Hex  EBCDIC      !
  123. !     ---  ---  ------      !
  124. !      76   4C    <         !
  125. !      77   4D    (         !
  126. !      78   4E    +         !
  127. !      80   50    &         !
  128. !      90   5A    !         !
  129. !      91   5B    $         !
  130. !      92   5C    *         !
  131. !      93   5D    )         !
  132. !      94   5E    ;         !
  133. !      96   60    -         !
  134. !      97   61    /         !
  135. !     107   6B    ,         !
  136. !     108   6C    %         !
  137. !     110   6E    >         !
  138. !     111   6F    ?         !
  139. !     122   7A    :         !
  140. !     123   7B    #         !
  141. !     124   7C    @         !
  142. !     125   7D    '         !
  143. !     126   7E    =         !
  144. !     127   7F    "         !
  145. !                           !
  146. !    Lower Case Letters     !
  147. !    ----- ---- -------     !
  148. !     Dec  Hex  EBCDIC      !
  149. !     ---  ---  ------      !
  150. !     129   81    a         !
  151. !     130   82    b         !
  152. !     131   83    c         !
  153. !     132   84    d         !
  154. !     133   85    e         !
  155. !     134   86    f         !
  156. !     135   87    g         !
  157. !     136   88    h         !
  158. !     137   89    i         !
  159. !     145   91    j         !
  160. !     146   92    k         !
  161. !     147   93    l         !
  162. !     148   94    m         !
  163. !     149   95    n         !
  164. !     150   96    o         !
  165. !     151   97    p         !
  166. !     152   98    q         !
  167. !     153   99    r         !
  168. !     162   A2    s         !
  169. !     163   A3    t         !
  170. !     164   A4    u         !
  171. !     165   A5    v         !
  172. !     166   A6    w         !
  173. !     167   A7    x         !
  174. !     168   A8    y         !
  175. !     169   A9    z         !
  176. !                           !
  177. !    Upper Case Letters     !
  178. !    ----- ---- -------     !
  179. !     Dec  Hex  EBCDIC      !
  180. !     ---  ---  ------      !
  181. !     193   C1    A         !
  182. !     194   C2    B         !
  183. !     195   C3    C         !
  184. !     196   C4    D         !
  185. !     197   C5    E         !
  186. !     198   C6    F         !
  187. !     199   C7    G         !
  188. !     200   C8    H         !
  189. !     201   C9    I         !
  190. !     209   D1    J         !
  191. !     210   D2    K         !
  192. !     211   D3    L         !
  193. !     212   D4    M         !
  194. !     213   D5    N         !
  195. !     214   D6    O         !
  196. !     215   D7    P         !
  197. !     216   D8    Q         !
  198. !     217   D9    R         !
  199. !     226   E2    S         !
  200. !     227   E3    T         !
  201. !     228   E4    U         !
  202. !     229   E5    V         !
  203. !     230   E6    W         !
  204. !     231   E7    X         !
  205. !     232   E8    Y         !
  206. !     233   E9    Z         !
  207. !                           !
  208. !          Numbers          !
  209. !          -------          !
  210. !     Dec  Hex  EBCDIC      !
  211. !     ---  ---  ------      !
  212. !     240   F0    0         !
  213. !     241   F1    1         !
  214. !     242   F2    2         !
  215. !     243   F3    3         !
  216. !     244   F4    4         !
  217. !     245   F5    5         !
  218. !     246   F6    6         !
  219. !     247   F7    7         !
  220. !     248   F8    8         !
  221. !     249   F9    9         !
  222.  --------------------------- 
  223.  
  224.      You may have noticed that there are irreqular skips in the numbers above. Unlike ASCII, this code follows no logical sequence.
  225.  
  226.  
  227. DOWNLODED FROM AND ORIGINALY DISPLAYED ON P-80 SYSTEMS
  228.